Test snippets for Dial Echo input pin to Register. Debugging wise, this is on the default page 0, Reg-B(11) Connect white to out-3 Red to In-0, blue to In-1 (nice 1:1 with plug) ; Initialiazation ; Output reg is all zeros, ie GND ; input reg is mapped (seen on LED page0 display). Bit 0 is Busy, Bit 1 is pulse 00: "NOP" 01: "NOP" 02: MOV R0,#5 ; Set sync 03: MOV [#F2],R0 ; .. to 10ms (Sync read from [244],bit 0) 04: "NOP" 05: "NOP" 06: "NOP" 07: "NOP" 08: "NOP" 09: MOV R2,#2 ; debug, show we're here ; Start her scanning for a digit LoopNew: ; wait for Busy going low 0A: BIT IN,#0 ; Test bit 0 in R11 (OP-Y-Code is 0b1100) 0B: SKIP NZ,1 ; Skip if NonZero 0b11xx (ie Clear) xx=01 0C: JR LoopNew ; Back to loop if clear 0D: MOV R2,#3 ; debug-show we're here 0E: 0F: ; Wait for first pulse LoopDigit: 10: JR -1 ;...HALT